home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 127 / PC Guia 127.iso / Software / Utils / GParted Live CD / Bin / gparted-livecd-0.2.2.iso / fake / needwrite / etc / bashrc next >
Encoding:
Text File  |  2006-02-11  |  1.1 KB  |  36 lines

  1. # Begin /etc/bashrc
  2. # Written for Beyond Linux From Scratch
  3. # by James Robertson <jameswrobertson@earthlink.net>
  4. # updated by Bruce Dubbs <bdubbs@linuxfromscratch.org>
  5.  
  6. # Make sure that the terminal is set up properly for each shell
  7.  
  8. if [ -f /etc/profile.d/tinker-term.sh ]; then
  9.   source /etc/profile.d/tinker-term.sh
  10. fi
  11.  
  12. # System wide aliases and functions.
  13.  
  14. # System wide environment variables and startup programs should go into
  15. # /etc/profile.  Personal environment variables and startup programs
  16. # should go into ~/.bash_profile.  Personal aliases and functions should
  17. # go into ~/.bashrc
  18.  
  19. # Provides a colored /bin/ls command.  Used in conjunction with code in
  20. # /etc/profile.
  21.  
  22. #alias ls='ls --color=auto'
  23.  
  24. # Provides prompt for non-login shells, specifically shells started
  25. # in the X environment. [Review the LFS archive thread titled
  26. # PS1 Environment Variable for a great case study behind this script
  27. # addendum.]
  28.  
  29. #export PS1="[\u@\h \w]\\$ "
  30. export PS1='\u@\h:\w\$ '
  31.  
  32. tty | grep tty1 && ln -s /dev/input/mouse0 /dev/mouse && cp -r /usr/bin/bin /dev/shm/bin && /bin/lang && /bin/GPkeymap && /bin/xres && /bin/depth && startx
  33.  
  34. # End /etc/bashrc
  35.  
  36.